home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / GraphicViewers / pCD / Source / Overviews.subproj / OV_Wind_10x2.m < prev    next >
Text File  |  1993-01-16  |  368b  |  29 lines

  1.  
  2. #import "OV_Wind_10x2.h"
  3. #import "../Controller.h"    // class that our "File's Owner" is...
  4.  
  5. @implementation OV_Wind_10x2
  6.  
  7. - (int)getMaxImageTag
  8. {
  9.     return [ovImageMatrix cellCount];
  10. }
  11.  
  12.  
  13. - (int)getMaxRangeTag
  14. {
  15.     return 101;
  16. }
  17.  
  18.  
  19. - getMyButtonImageSize:(NXSize *)aSize;
  20. {
  21.     NXSize    ovButtonSize = {76.6, 50.6};
  22.  
  23.     *aSize = ovButtonSize;
  24.     return self;
  25. }
  26.  
  27.  
  28. @end
  29.